home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-07-16 | 475 b | 34 lines | [TEXT/CWIE] |
- /*
- QD3Viewer.r
- */
-
- #include <Types.r>
-
- #define eConsoleApp 1
- #define eToolboxApp 2
-
- type 'MCFG' {
- /* steve says, add a version number. */
- integer; /* type of application. */
- };
-
- #if 1
- resource 'MCFG' (128, "Mindy Configuration") {
- eToolboxApp
- };
- #endif
-
- type 'OBJS' as 'STR#';
-
- resource 'OBJS' (128, "Mindy Objects") {
- {
- "QD3ViewerLib.dbc",
- "Toolbox.dbc",
- "QD3DTypes.dbc",
- "QD3DViewer.dbc",
- "QD3DMath.dbc",
- "QD3DMisc.dbc",
- "QD3ViewerMain.dbc",
- };
- };
-